home *** CD-ROM | disk | FTP | other *** search
- Path: maze.dpo.uab.edu!usenet
- From: Hunter Moseley <hunter@mozart.nmrcore.uab.edu>
- Newsgroups: comp.lang.c++,comp.sys.sgi.misc
- Subject: What is the best way to initialize static template members?
- Date: Fri, 01 Mar 1996 18:44:31 -0600
- Organization: University of Alabama at Birmingham
- Message-ID: <313799EF.41C6@mozart.nmrcore.uab.edu>
- NNTP-Posting-Host: 138.26.34.102
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 2.0 (X11; I; IRIX 5.3 IP12)
-
- What is the best way to initialize static template members?
-
- Example:
-
- template<class T>
- class X
- {
- private :
- static int min_buff_size;
- ...
- };
-
- What is the best way to initialize min_buff_size for a given
- X<T> class?
-
- take care,
- Hunter
-